From: Richard M. Stallman Date: Sat, 11 Nov 2006 01:00:10 +0000 (+0000) Subject: (flyspell-mode-map): Bind C-c $ instead of M-RET. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~32156 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=89be8f4ece8261a3ca664f3cc4a3ae09d2c096c6;p=emacs.git (flyspell-mode-map): Bind C-c $ instead of M-RET. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index fb60cf8363f..84c6be5af25 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2006-11-11 Richard Stallman + + * textmodes/flyspell.el (flyspell-mode-map): + Bind C-c $ instead of M-RET. + 2006-11-10 Simon Marshall * progmodes/cc-fonts.el (c-font-lock-declarations): Don't overwrite diff --git a/lisp/textmodes/flyspell.el b/lisp/textmodes/flyspell.el index 5268988f427..a3c110b8f19 100644 --- a/lisp/textmodes/flyspell.el +++ b/lisp/textmodes/flyspell.el @@ -412,7 +412,7 @@ property of the major mode name.") (define-key map flyspell-auto-correct-binding 'flyspell-auto-correct-previous-word) (define-key map [(control ?\,)] 'flyspell-goto-next-error) (define-key map [(control ?\.)] 'flyspell-auto-correct-word) - (define-key map [(meta ?\^m)] 'flyspell-correct-word-before-point) + (define-key map [?\C-c ?$] 'flyspell-correct-word-before-point) map) "Minor mode keymap for Flyspell mode--for the whole buffer.")